home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960715-19961006 / 000084_news@columbia.edu _Sat Jul 27 11:18:36 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: news@columbia.edu
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30]) by watsun.cc.columbia.edu (8.7.5/8.7.3) with ESMTP id LAA18032 for <kermit.misc@watsun.cc.columbia.edu>; Sat, 27 Jul 1996 11:18:36 -0400 (EDT)
  3. Received: (from news@localhost) by newsmaster.cc.columbia.edu (8.7.5/8.7.3) id LAA16867 for kermit.misc@watsun; Sat, 27 Jul 1996 11:18:35 -0400 (EDT)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: C-Kermit, OS/2, and All-in-1 problem
  8. Date: 27 Jul 1996 15:18:13 GMT
  9. Organization: Columbia University
  10. Lines: 30
  11. Message-ID: <4tdbvl$pac@apakabar.cc.columbia.edu>
  12. References: <4td38e$qet@hecate.umd.edu>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14.  
  15. In article <4td38e$qet@hecate.umd.edu>,  <bandyo@econ.umd.edu> wrote:
  16.  
  17. : I am trying to set up C-kermit 5A(191) on OS/2 to connect to my wife's
  18. : office, to use All-in-1.  Every thing works fine except All-in-1's email
  19. : editer "WPS-Plus." When I enter the editer (to create an email for example),
  20. : the terminal shows 3lJ8l and goes into "line mode" in stead of giving me the
  21. : full screen.
  22. :
  23. These are fragments of escape sequences, indicating that the VT emulator
  24. is not recognizing them as escape sequences.  Most likely this is because
  25. when you have a VT220 (as OS/2 C-Kermit emulates by default), VMS assumes you
  26. have an 8-bit connection, and so sends 8-bit escape sequences, but C-Kermit's
  27. default "terminal bytesize" is 7, not 8, as a defense against parity.  So
  28. tell C-Kermit:
  29.  
  30.   set terminal type vt220
  31.   set parity none
  32.   set terminal bytesize 8
  33.  
  34. or, if for some reason the intervening connection is really not 8-bit clean,
  35. you'll need to tell VMS:
  36.  
  37.   set teminal/noeight
  38.  
  39. This will force VMS to send escape sequences in their 7-bit form.
  40.  
  41. If that doesn't do it, then send email to kermit-support@columbia.edu with
  42. additional details.
  43.  
  44. - Frank